//Instructions: Create a function that takes an array of numbers and returns the smallest number in the set.

using System;
using System.Linq;
public class Program 
{
    public static double FindSmallestNum(double[] arr) 
    {
      return arr.Min();
    }
}
